home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #12 / K-CD-12-2002.ISO / 3D 4-in-a-row / 3d4r.exe / 0 / RCDATA / TSCOREFORM / TSCOREFORM.txt
Encoding:
Text File  |  2002-05-20  |  1.6 KB  |  82 lines

  1. object ScoreForm: TScoreForm
  2.   Left = 270
  3.   Top = 228
  4.   BorderStyle = bsDialog
  5.   Caption = 'Scores'
  6.   ClientHeight = 193
  7.   ClientWidth = 405
  8.   Color = clBtnFace
  9.   Font.Charset = ANSI_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'Tahoma'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poScreenCenter
  16.   DesignSize = (
  17.     405
  18.     193)
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object StatsList: TListView
  22.     Left = 10
  23.     Top = 8
  24.     Width = 383
  25.     Height = 145
  26.     Anchors = [akLeft, akTop, akRight, akBottom]
  27.     Columns = <
  28.       item
  29.         AutoSize = True
  30.         Caption = 'Name'
  31.       end
  32.       item
  33.         Caption = 'Wins'
  34.       end
  35.       item
  36.         Caption = 'Losses'
  37.       end
  38.       item
  39.         Caption = 'Draws'
  40.       end
  41.       item
  42.         Caption = 'Ratio'
  43.       end>
  44.     GridLines = True
  45.     HideSelection = False
  46.     MultiSelect = True
  47.     ReadOnly = True
  48.     RowSelect = True
  49.     TabOrder = 0
  50.     ViewStyle = vsReport
  51.     OnKeyDown = StatsListKeyDown
  52.   end
  53.   object DoneBtn: TButton
  54.     Left = 320
  55.     Top = 160
  56.     Width = 75
  57.     Height = 25
  58.     Anchors = [akRight, akBottom]
  59.     Cancel = True
  60.     Caption = 'Done'
  61.     Default = True
  62.     Font.Charset = ANSI_CHARSET
  63.     Font.Color = clWindowText
  64.     Font.Height = -11
  65.     Font.Name = 'Tahoma'
  66.     Font.Style = [fsBold]
  67.     ModalResult = 1
  68.     ParentFont = False
  69.     TabOrder = 2
  70.   end
  71.   object ClearBtn: TButton
  72.     Left = 240
  73.     Top = 160
  74.     Width = 75
  75.     Height = 25
  76.     Anchors = [akRight, akBottom]
  77.     Caption = 'Clear'
  78.     TabOrder = 1
  79.     OnClick = ClearBtnClick
  80.   end
  81. end
  82.